home *** CD-ROM | disk | FTP | other *** search
/ CD Ware Multimedia 1994 November / Cd Ware (Nro. 2) - Epimundo.iso / DOS / CM / SAT114.ZIP / EXTRA.DOC < prev    next >
Encoding:
Text File  |  1994-05-16  |  734 b   |  42 lines

  1.  
  2.  
  3. FNAME.EXE
  4.  
  5. Takes a wildcard (assumes *.*) and outputs the matching files as
  6. bare filenames.  Can also take a text string input such as:
  7.  
  8. "pkzip -a %f %s%narj a %f %s%ndel %s"
  9.  
  10. or
  11.  
  12. "
  13.  
  14. where:  %n = newline
  15.         %s = whole file name
  16.         %f = first part of file name
  17.         %e = last part (extent) of file name
  18.  
  19. Output can be redirected.  Used for making batch files to process
  20. groups of files.  Example:
  21.  
  22. fname *.PCX "pkzip -m %f %s">doit.bat
  23.  
  24.  
  25.  
  26.  
  27. DATESTMP
  28.  
  29.  
  30. Outputs date and time in the format: MM/DD/YY @ HH:MM:SS
  31.  
  32. Will add command line text to the output, which can be redirected.
  33.  
  34. Example:
  35.  
  36. datestmp "- Start FIDO TOSS">fido.log
  37.  
  38. will produce
  39.  
  40. 05/16/94 @ 05:26:01 - Start FIDO TOSS
  41.  
  42.